if (panelA11y.cellIndex !== undefined && row.cells && row.cells[panelA11y.cellIndex]) //allows up / down navigation in columns, if columns are used in this panel
{
var cell = row.cells[panelA11y.cellIndex];
if (!hasClass(cell, "a11yFocus"))
cell = getChildByClass(cell, 'a11yFocus');
this.focus(cell);
}
else if (hasClass(row, 'netInfoTabs')) // for Net Panel. Focus selected tab rather than the tablist
{
var tabs = row.getElementsByClassName('netInfoTab');